F-1Grand Prix StarII graphics bug
=================================

There are garbled graphics on the right side in the attract mode of 'F-1 Grand Prix Star II'
(f1gpstr2) since MAME 0.125u3. It has something to do with the changes in MAME's
"Core multi-CPU execution engine" (src\emu\cpuexec.c).
Please use the free tool WDiff at http://www.csitte.at/wdiff/wdiff149.zip to compare
the file src\emu\cpuexec.c from MAME 0.125u2 and u3 (here in the directories 0125u2/3).
Simply start teh program WDIFF32.EXE.


I have fix this problem. I did not changed all lines back to MAME 0.125u2, only 2 lines!



Changed in MAME 0.136u2 src\emu\cpuexec.c line 1384 from

				classdata->iloops = 0;
to
				classdata->iloops = config->vblank_interrupts_per_frame - 1;

and line 1439 from

	if (classdata->iloops > 1)
to
	if (classdata->iloops > 0)


All gfx are now displayed again in f1gpstr2!


M*A*S*H


